6.2 定制 cache

以下设置对于 Cache 组件来说是可调的。值被存储在 etcd。

依赖项

Requires: none
Required by:controller, registry
Considerations:none

cache 设定的设置

以下的 etcd 键由 cache 组件设置,通常在它的 /bin/boot 脚本。

设置 描述
/deis/cache/host 运行着 cache 主机的地址IP
/deis/cache/port cache 服务使用的端口 (默认:6379)

cache 使用的设置

cache 组件没有使用来自 etcd 的键。

使用一个定制的 cache 镜像

你可以使用一个定制的 cache 组件的 Dokcer 镜像来代替 Deis 提供的镜像:

  1. $ deisctl config cache set image=myaccount/myimage:latest

这将从公有的 Docker registry 拉取(pull)镜像。你也可以从一个私有的 registry 拉取(pull):

  1. $ deisctl config cache set image=registry.mydomain.org:5000/myaccount/myimage:latest

确保你定制的镜像功能与 Deis 自带的 stock cache image 一样。明确的说,就是确保它设置和读取合适的 etcd 键。